home *** CD-ROM | disk | FTP | other *** search
/ ShareWare OnLine 2 / ShareWare OnLine Volume 2 (CMS Software)(1993).iso / database / whozit_1.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1993-02-07  |  697b  |  36 lines

  1. @echo off
  2. break on
  3. cls
  4. echo.
  5. echo.
  6. echo Is it OK for me to make a new directory called C:\WHOZIT  ?
  7. echo.
  8. echo.
  9. echo Press CTRL-BREAK to cancel installation or....
  10. echo.
  11. pause
  12. md c:\whozit
  13. cls
  14. echo.
  15. echo.
  16. echo ...OK, I just made a directory called C:\WHOZIT...now, is
  17. echo it OK for me to:
  18. echo.
  19. echo            1. Copy all the files in the current directory
  20. echo               to the C:\WHOZIT directory,
  21. echo.
  22. echo            2. Copy WHO.BAT to the root directory,
  23. echo.
  24. echo            3. Start the WHOZIT program?
  25. echo.
  26. echo.
  27. echo Press CTRL-BREAK to cancel installation or ....
  28. echo.
  29. pause
  30. copy *.* c:\whozit
  31. c:
  32. cd c:\whozit
  33. copy who.bat c:\
  34. whozit.exe
  35. cd\
  36.